home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win2K Secure Desktop.xpl < prev    next >
Text File  |  2002-01-04  |  1KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="System\Security\Common"
  5. "NAME"="Windows 2000 Secure Desktop"
  6. "VERSION"="1.07"
  7. "OSVERSION"="0001011"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Secure Desktop Patch"
  10. "DESCRIPTION 1"="The "Desktop Separation" patch for Win2K prevents certain software from sniffing and recording I/O on the desktop; however, the patch can interfer with other software. To disable the patch, Clear [uncheck] the Box."
  11. "DESCRIPTION 2"="To re-enable the patch, check the Box & apply change." 
  12. "DESCRIPTION 3"="For additional information about the "Desktop Separation" patch, see: http://www.microsoft.com/TechNet/security/bulletin/ms00-020.asp & http://www.microsoft.com/technet/security/bulletin/fq00-020.asp."
  13. "AUTHOR"="Ojatex@aol.com"
  14. "CONTACTURL"="http://members.aol.com/ojatex/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17.  
  18. sp="HKLM\Software\Microsoft\Windows NT\CurrentVersion\Windows\"  'Dwrd=0=disablepatch
  19. sV1="SecureDesktop"
  20.  
  21. Sub Plugin_Initialize 
  22.     i=RegReadValue(sP&sV1)
  23.     if i=1 or IsEmpty(i)  then 
  24.        SetUIElement 1,true
  25.     end if
  26. End Sub
  27.  
  28. Sub Plugin_CheckData(ElementIndex)
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  b=GetUIElement(1)
  33.  if b=true then
  34.    Call RegWriteValue(sP&sV1,1,2)
  35.  else
  36.    Call RegWriteValue(sP&sV1,0,2)
  37.  end if
  38.  
  39. End Sub
  40.  
  41. Sub Plugin_Terminate 
  42. End Sub
  43.  
  44.  
  45.  
  46.